crypto/sha1.digest.nx (field)

13 uses

	crypto/sha1 (current package)
		sha1.go#L43: 	nx  int
		sha1.go#L63: 	b = append(b, d.x[:d.nx]...)
		sha1.go#L64: 	b = append(b, make([]byte, len(d.x)-d.nx)...)
		sha1.go#L84: 	d.nx = int(d.len % chunk)
		sha1.go#L102: 	d.nx = 0
		sha1.go#L130: 	if d.nx > 0 {
		sha1.go#L131: 		n := copy(d.x[d.nx:], p)
		sha1.go#L132: 		d.nx += n
		sha1.go#L133: 		if d.nx == chunk {
		sha1.go#L135: 			d.nx = 0
		sha1.go#L145: 		d.nx = copy(d.x[:], p)
		sha1.go#L180: 	if d.nx != 0 {
		sha1.go#L213: 	nx := byte(d.nx)